home *** CD-ROM | disk | FTP | other *** search
/ Merciful 2 / Merciful - Disc 2.iso / software / d / devioustools19.dms / devioustools19.adf / utils / 010.lzx / Flush / Flush.doc < prev    next >
Text File  |  1988-01-30  |  1KB  |  83 lines

  1.  
  2. NAME
  3.  
  4.     Flush
  5.     Selectively remove unused libraries, devices and fonts from memory.
  6.  
  7. FUNCTION
  8.  
  9.     Flush is just an enhanced version of C='s 'flushlibs' program.
  10.  
  11. INSTALLATION
  12.  
  13.     Simply copy Flush to C: - that's all.
  14.  
  15. TEMPLATE
  16.  
  17.     Flush NAMES/M,LIBS=LIBRARIES/S,DEVS=DEVICES/S,FONTS/S,ALL/S,QUIET/S
  18.  
  19.         NAMES/M:     The list of libraries, devices and fonts to flush.
  20.                      Standard Amiga wildcards are supported.
  21.                      See examples.
  22.  
  23.         LIBRARIES/S: Restrict the flush to unused libraries only.
  24.                      May be abbreviated to LIBS.
  25.  
  26.         DEVICES/S:   Restrict the flush to unused devices only.
  27.                      Me be abbreviated to DEVS.
  28.  
  29.         FONTS/S:     Restrict the flush to fonts only.
  30.  
  31.         ALL/S:       Flush libraries, devices and fonts. This is the
  32.                      default if none of the LIBRARIES, DEVICES or
  33.                      FONTS options is given.
  34.  
  35.         QUIET/S:     Silent operation.
  36.  
  37. EXAMPLES
  38.  
  39.     - Flush all unused libraries, devices and fonts:
  40.  
  41.         Flush
  42.  
  43.         or
  44.  
  45.         Flush ALL
  46.  
  47.     - Flush unused fonts only:
  48.  
  49.         Flush FONTS
  50.  
  51.         or
  52.  
  53.         Flush #?.font
  54.  
  55.         (unless a library or device happens to be named something.font)
  56.  
  57.     - Flush unused devices and fonts only:
  58.  
  59.         Flush DEVS FONTS
  60.  
  61.         or
  62.  
  63.         Flush #?.device #?.font
  64.  
  65.         or
  66.  
  67.         Flush ~(#?.library)
  68.  
  69.     - Flush a particular device:
  70.  
  71.         Flush my.device
  72.  
  73.         or
  74.  
  75.         Flush my#? DEVS
  76.  
  77.     - Flush all libraries but the SAS/C compiler, all devices but
  78.       serial.device, and all fonts but helvetica.font:
  79.  
  80.         Flush ~(sc#?.library) ~(serial.device) ~(helv#?.font)
  81.  
  82.     - etc.
  83.